53555045524d414e00 (SUPERMAN\x00)
>>> s = rdpcap("ads.pcapng")
>>> def filter(pkt): return pkt.src == "a4:83:e7:3c:76:79" and pkt.haslayer(ICMP) and not (pkt[ICMP].type == 8 or pkt[ICMP].type == 0 or pkt[ICMP].type == 3)
>>>
>>> s = s.filter(filter)
>>> len(s), len(s)%8
(184, 0)
>>> bits = "".join(str([0,1][pkt[ICMP].type%2==0]) for pkt in s)
>>> bits
'0101001001010011011110110110011100110000001100000110011101101100011001010101111101000001011001000110010001011111011100110011001101110010011101100011000101100011001100110111001101111101'
>>> "".join(chr(int(i, 2)) for i in re.findall(".{8}", bits))
'RS{g00gle_Add_s3rv1c3s}'
>>> eth.src == a4:83:e7:3c:76:79 && icmp && !(icmp.type == 8 or icmp.type == 0 or icmp.type == 3)